home *** CD-ROM | disk | FTP | other *** search
/ PC for Alla 2005 May / PC för Alla 0505.iso / fullversioner / realsoft3d / data1.cab / Scripting / scripting / Intro / window.js < prev   
Encoding:
Text File  |  2005-04-04  |  483 b   |  16 lines

  1. // JavaScript sample for Realsoft 3D
  2. // Create a dummy window
  3.  
  4. include("oops/r3window.js");
  5.  
  6. dummyWindow = new r3Window(R3WGA_Parent, _r3gui,
  7.                R3WGA_Left, 300,
  8.                            R3WGA_Top, 200,
  9.                R3WGA_Width, 300,
  10.                            R3WGA_Height, 200,
  11.                            R3WA_ReportCloseWindow, TRUE,
  12.                            R3WA_ReportNewSize, TRUE,
  13.                            R3WA_Title, "Dummy Window");
  14.  
  15. dummyWindow.REALIZE();
  16.